home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / gcc / ixemul-4.lha / ixemul-41.4 / man / cat2 / killpg.0 < prev    next >
Text File  |  1992-08-10  |  2KB  |  67 lines

  1.  
  2. KILLPG(2)                  UNIX Programmer's Manual                  KILLPG(2)
  3.  
  4. NNAAMMEE
  5.      kkiillllppgg - send signal to a process group
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssyyss//ssiiggnnaall..hh>>
  9.  
  10.      _i_n_t
  11.      kkiillllppgg(_p_i_d___t _p_g_r_p, _i_n_t _s_i_g)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      KKiillllppgg() sends the signal _s_i_g to the process group _p_g_r_p. See sigaction(2)
  15.      for a list of signals.  If _p_g_r_p is 0, kkiillllppgg() sends the signal to the
  16.      sending process's process group.
  17.  
  18.      The sending process and members of the process group must have the same
  19.      effective user ID, or the sender must be the super­user.  As a single
  20.      special case the continue signal SIGCONT may be sent to any process that
  21.      is a descendant of the current process.
  22.  
  23. RREETTUURRNN VVAALLUUEESS
  24.      Upon successful completion, a value of 0 is returned.  Otherwise, a value
  25.      of ­1 is returned and the global variable _e_r_r_n_o is set to indicate the
  26.      error.
  27.  
  28. EERRRROORRSS
  29.      KKiillllppgg() will fail and no signal will be sent if:
  30.  
  31.      [EINVAL]      _S_i_g is not a valid signal number.
  32.  
  33.      [ESRCH]       No process can be found in the process group specified by
  34.                    _p_g_r_p.
  35.  
  36.      [ESRCH]       The process group was given as 0 but the sending process
  37.                    does not have a process group.
  38.  
  39.      [EPERM]       The sending process is not the super­user and one or more
  40.                    of the target processes has an effective user ID different
  41.                    from that of the sending process.
  42.  
  43. SSEEEE AALLSSOO
  44.      kill(2),  getpgrp(2),  sigaction(2)
  45.  
  46. HHIISSTTOORRYY
  47.      The kkiillllppgg function call appeared in 4.0BSD.
  48.  
  49. 4th Berkeley Distribution       March 10, 1991                               1
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.